home *** CD-ROM | disk | FTP | other *** search
/ Over 1,000 Windows 95 Programs / Over 1000 Windows 95 Programs (Microforum) (Disc 1).iso / 1256 / convio.h_ / convio.h
C/C++ Source or Header  |  1997-04-18  |  992b  |  36 lines

  1. /* EasyCODE(C++) V5.1 03.03.1995 11:07:10 */
  2. /* EasyCODE O
  3. If=horizontal
  4. LevelNumbers=no
  5. LineNumbers=no
  6. ScreenFont=Courier New,,80,9220,-11,0,400,0,0,0,0,0,0,3,2,1,49
  7. PrinterFont=Courier New,,80,17414,-34,0,400,0,0,0,0,0,0,3,2,1,49
  8. LastLevelId=8 */
  9.  
  10. /* EasyCODE ( 1
  11.    Header file */
  12. #include <stdlib.h>
  13. #include <stdio.h>
  14. #include <fcntl.h>
  15. #include <assert.h>
  16.  
  17. typedef int BOOL;
  18. #define TRUE (1)
  19. #define FALSE (0)
  20.  
  21. #define I_BUFSIZE 1024
  22. /* EasyCODE - */
  23. /* --------------------------------------------------------------
  24.                     FORWARD REFERENCES
  25.    --------------------------------------------------------------*/
  26.    
  27.    FILE*  OpenInput( char* name);
  28.    FILE*  OpenOutput( char* name);
  29.    BOOL   ReadLine( char* inbuf, FILE* stream);
  30.    long   TellPos( FILE* stream);
  31.    void   SeekPos( long position, FILE* stream);
  32.    void   StoreLine( char* outbuf, FILE* stream);
  33.    void   CloseFile( FILE* stream);
  34.    void*  malloc();
  35. /* EasyCODE ) */
  36.